home *** CD-ROM | disk | FTP | other *** search
-
- ;
- ; The Sound Zone bbs Addie (re)coded by Ash..
- ; It was originally coded by Synopsis..but i was bored and wanted to code
- ; it again!.. hehe.. stupid euheu??!... if ye wanna use it its NOT lame..
- ; but i just think its fair to credit me and Synopsis.. dont ye think?..
- ; may phun rule 4ever!..l8rz
- ;
-
-
- code segment
- assume cs:code
- p286
- org 100h
- jumps
-
- start:
- push 0b800h ; Destination iz da Code
- pop ds ; Source iz da Screen..
- push cs ; 0b800h iz da segment for
- pop es ; da screen in 25x80x16 mode
-
- lea di,screen
- xor si,si
- mov cx,2000
- repz movsw
-
- push 0b800h ; dest iz now da screen
- pop es ; source iz now Code
- push cs
- pop ds
-
- mov bx,158 ; BX iz da position in
- mov ax,2 ; SI.. AX iz da ammount of
- mov cx,43 ; wordz to offset horiz
- ; CX iz da ammount of wordz
- ; to 'scroll'...
- horiz: push cx
- mov si,bx
- add si,offset absurd ; ADD offset logo
- mov di,0 ; starting pos. 0 left/up scr.
- mov cx,25 ; 25 timez
- do25: push cx
- mov cx,ax
- repz movsb
- add di,160 ; add 160 - AX
- sub di,ax
- add si,160 ; same with SI
- sub si,ax
- pop cx
- loop do25 ; vertical 25 timez
-
- lea si,screen ; offset the screenbuffer
- mov di,ax ; after the logo offset
- mov cx,25 ; how?..just start to offset
- another25: push cx ; the buffer after AX..
- mov cx,bx
- repz movsb
- add di,160
- sub di,bx
- add si,160
- sub si,bx
- pop cx
- loop another25
-
- cmp counter,0 ; if counter iz zero then
- jne goleft ; shift right.. if zero iz
- ; something else go left
- sub bx,2
- add ax,2
- jmp further
-
- goleft: add bx,2
- sub ax,2
-
- further: push ax ; push & pop ax cos' we use AX
- call vwait ; why push?.. we use it in
- pop ax cx ; da vertical retrace..
- loop horiz
-
- cmp counter,0 ; thiz iz da second time 'it'
- jne outnow ; comez here, the second time
- ; the COUNTER isn't 0 and he
- push ax ; will get back to dos..
- xor ax,ax ; wait for fucking key!
- int 16h ; int16h
- pop ax
-
- add bx,2
- sub ax,2
-
- mov cx,44 ; shift 1 word more left..why?
- inc counter ; find out yur selve..
- jmp horiz
-
- outnow: int 20h ; outahere!
-
-
- ;
- ; Data & other lame shit
- ;
-
- vwait: mov dx,3dah ; Thiz iz da vertical Retr.
- v1: in al,dx
- test al,8
- jne v1
- v2: in al,dx
- test al,8
- je v2
- ret
-
- counter dw 0
- screen dw 2000 dup(0)
-
- absurd label
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
- DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
- DB 32,95,32,95,32,95,32,95,32,95,84,90,32,90,72,90,32,90,69,90
- DB 32,90,32,90,32,26,83,90,32,90,79,90,32,26,85,26,32,26,78,26
- DB 32,26,68,26,32,90,32,90,32,90,90,26,32,90,79,90,32,90,78,90
- DB 32,90,69,90,32,90,32,90,32,90,32,90,32,90,32,90,32,26,32,26
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,26,32,26,32,26
- DB 32,26,32,26,32,26,32,26,32,90,45,88,45,87,45,27,45,31,45,31
- DB 45,31,45,31,45,31,45,95,45,95,45,95,45,31,45,31,45,31,45,31
- DB 45,31,45,31,45,95,45,95,45,95,45,31,45,95,45,95,45,95,45,31
- DB 45,27,45,23,45,24,32,24,32,24,32,24,32,24,32,24,32,24,32,24
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,30,32,30,32,30
- DB 32,30,32,30,32,30,32,30,32,94,32,94,32,94,32,30,32,30,32,30
- DB 32,30,32,30,32,30,32,94,32,94,32,94,32,94,32,94,32,94,32,94
- DB 32,94,32,94,32,94,32,94,32,94,32,30,32,94,32,94,32,94,32,94
- DB 32,94,32,30,32,30,32,30,32,30,32,30,32,30,32,30,32,30,32,30
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,28,32,28,32,28
- DB 32,28,32,28,32,28,32,28,84,95,104,95,105,95,115,31,32,31,105,31
- DB 115,31,32,31,97,31,32,95,66,95,66,95,83,31,32,31,115,31,112,31
- DB 101,31,99,31,105,95,97,95,108,95,105,31,122,95,101,95,100,95,32,31
- DB 105,31,110,31,58,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
- DB 83,27,66,27,47,27,83,27,66,91,80,91,82,91,79,27,47,27,83,27
- DB 66,27,49,27,54,27,47,91,80,91,65,91,83,27,49,27,54,27,32,27
- DB 97,31,110,31,100,95,32,95,71,91,85,27,83,91,32,91,115,95,111,95
- DB 117,95,110,95,100,95,99,95,97,95,114,95,100,95,115,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
- DB 32,31,32,31,32,31,71,31,101,31,116,31,32,31,116,31,104,31,101,31
- DB 32,31,108,31,97,31,116,31,101,31,115,31,116,31,32,31,85,31,116,31
- DB 105,31,108,31,115,31,47,31,67,31,111,31,109,31,112,31,111,31,115,31
- DB 101,31,114,31,115,31,47,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
- DB 32,95,32,95,112,95,108,95,97,95,121,95,101,31,114,95,115,95,47,95
- DB 77,95,84,95,77,95,47,95,77,31,79,95,68,95,47,95,83,31,51,95
- DB 77,95,47,95,54,31,54,95,57,95,47,95,85,95,76,95,84,95,47,95
- DB 69,31,116,95,99,95,32,95,46,95,32,95,32,95,32,31,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
- DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,91,32,91,32,91
- DB 32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,91
- DB 32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91
- DB 32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,27
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
- DB 32,91,83,95,111,31,32,31,97,31,108,31,108,31,32,95,121,95,111,95
- DB 117,31,32,95,67,95,111,95,79,31,108,95,32,95,68,95,117,31,68,95
- DB 101,95,83,95,32,31,44,95,32,95,99,95,97,31,108,95,108,95,32,95
- DB 117,31,115,95,32,95,102,95,111,31,114,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
- DB 32,95,32,95,116,31,104,31,101,31,32,31,108,28,97,92,116,92,101,92
- DB 115,28,116,92,32,92,47,95,32,31,104,92,111,92,116,92,116,28,101,92
- DB 115,92,116,92,32,28,115,95,111,95,117,95,110,31,100,95,32,95,119,95
- DB 97,31,114,95,101,95,122,95,33,31,32,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
- DB 32,95,32,95,32,95,32,95,32,95,32,95,32,31,32,95,32,95,32,95
- DB 32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,95
- DB 32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95
- DB 32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
- DB 32,31,73,31,102,31,32,95,121,95,111,95,117,31,39,95,114,95,101,95
- DB 32,31,97,95,32,95,108,95,97,31,109,95,101,95,114,95,32,31,119,95
- DB 104,95,111,95,32,31,100,95,111,95,101,95,115,31,110,95,39,95,116,95
- DB 32,31,107,95,110,95,111,95,119,31,32,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
- DB 32,91,104,95,111,95,119,95,32,95,116,95,111,31,32,95,112,95,108,95
- DB 97,95,121,95,32,95,97,95,32,31,77,95,79,95,68,95,32,95,102,95
- DB 105,95,108,95,101,31,32,95,111,95,114,95,32,31,105,95,102,95,32,95
- DB 121,31,111,95,117,95,39,95,118,95,101,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
- DB 32,91,32,91,110,95,101,95,118,95,101,95,114,31,32,95,104,95,101,95
- DB 97,95,114,95,100,95,32,95,111,31,102,95,32,95,116,95,104,95,101,95
- DB 32,95,119,95,111,31,114,95,100,95,32,95,39,31,77,95,79,95,68,95
- DB 39,31,32,95,116,95,104,95,101,95,110,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,27
- DB 32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
- DB 32,27,32,27,32,27,67,28,65,28,76,28,76,28,32,28,85,28,83,28
- DB 32,28,78,28,79,28,87,28,33,28,33,28,32,28,32,28,32,28,32,28
- DB 32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
- DB 32,91,32,91,32,91,32,91,32,91,32,91,32,91,32,91,32,27,32,91
- DB 32,91,87,95,101,95,32,95,99,95,97,95,110,95,32,95,104,31,101,95
- DB 108,95,112,95,32,95,121,95,111,95,117,95,46,95,32,95,32,31,32,95
- DB 32,95,32,95,32,95,32,95,32,95,32,95,32,95,32,95,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,27
- DB 32,27,32,27,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
- DB 32,91,32,91,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
- DB 32,91,32,91,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
- DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,84,30
- DB 104,30,101,30,32,30,78,30,117,30,109,94,98,94,101,94,114,30,32,94
- DB 58,94,32,94,48,30,51,30,53,30,45,94,50,94,56,94,50,30,50,94
- DB 56,94,54,94,32,30,47,30,32,30,43,94,51,94,49,94,45,30,51,94
- DB 53,94,45,94,50,30,56,30,50,30,50,30,56,30,54,30,32,30,32,30
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
- DB 32,31,32,31,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
- DB 32,95,32,95,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
- DB 32,95,32,95,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
- DB 32,95,32,95,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,50,91
- DB 52,91,104,91,32,91,65,91,32,91,100,91,97,91,121,91,32,27,97,91
- DB 116,91,32,91,49,27,52,27,75,27,52,91,32,91,76,91,111,27,99,91
- DB 97,91,116,91,101,27,100,27,32,27,105,91,110,91,32,91,72,27,111,91
- DB 108,91,108,91,97,91,110,91,100,91,33,91,33,27,33,27,32,27,32,27
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,68,91
- DB 105,91,115,91,116,27,114,27,105,27,98,27,117,27,116,27,105,27,111,91
- DB 110,91,32,91,115,27,105,27,116,27,101,91,32,91,111,91,102,27,32,91
- DB 73,91,78,91,69,27,82,27,84,27,73,91,65,91,32,91,46,27,32,91
- DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,67,87
- DB 68,87,78,87,32,87,45,87,32,87,57,87,52,87,58,87,52,23,49,87
- DB 48,87,47,87,49,87,49,87,55,87,32,87,32,87,32,87,32,23,32,87
- DB 32,87,32,87,32,23,68,23,71,23,105,87,32,87,45,87,32,23,54,87
- DB 56,87,58,87,51,87,49,87,48,87,47,87,49,87,50,87,32,23,32,23
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,23,32,23,32,87
- DB 32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,87,72,23,111,87
- DB 115,87,116,87,32,87,68,87,83,87,67,87,32,87,45,87,32,23,49,87
- DB 51,87,53,87,58,23,49,23,48,23,49,87,48,87,47,87,48,23,32,87
- DB 32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,23,32,23
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
- DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,23,32,23,32,23
- DB 32,23,40,21,80,21,115,21,46,21,32,21,116,21,104,21,101,21,114,21
- DB 101,21,32,21,105,21,115,21,32,21,97,21,32,21,115,21,101,21,99,21
- DB 114,21,101,21,116,21,32,21,107,21,101,21,121,21,32,21,105,21,110,21
- DB 32,21,104,21,101,21,114,21,101,21,33,21,41,21,32,21,32,21,32,21
-
- code ends
- end start
-